home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / arctandemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  115 b   |  6 lines

  1. program ArcTanDemo;
  2. begin
  3.   { yields 3.14159 as ArcTan (1) = Pi / 4 }
  4.   WriteLn (4 * ArcTan (1) : 0 : 5)
  5. end.
  6.